home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / os2 / edm0407s.zip / STAT3SRC.ZIP / STAMSGH.CPP < prev    next >
C/C++ Source or Header  |  1996-03-24  |  638b  |  20 lines

  1. #include "stamsgh.hpp"
  2.  
  3. /**************************************************************/
  4. /* Dispatch command functions for this handler.               */
  5. /**************************************************************/
  6. Boolean AStatusHandler :: dispatchHandlerEvent(IEvent&  evt)
  7. {
  8.   switch(evt.eventId())
  9.          {
  10.           case MYM_STATUS_START_PROCESS:
  11.                return (startProcess (evt));
  12.           case MYM_STATUS_PROCEED:
  13.                return (proceed (evt));
  14.           case MYM_STATUS_END_PROCESS:
  15.                return (endProcess (evt));
  16.          default:
  17.                return (false);
  18.          }
  19. }
  20.